Memcached : Install
2016/09/11 |
Install Memcached which is the distributed memory caching System.
|
|
[1] | Install Memcached. |
root@dlp:~# apt-get -y install memcached
|
[2] | Configure Memcached. Change major parameters like follows if you need. |
root@dlp:~#
vi /etc/memcached.conf # line 23: max chache memory size (MB) -m 64 # line 26: listening port -p 11211 # line 30: process owner -u memcache # line 35: listening IP address (local only by default) # if listening all, change to 0.0.0.0 -l 127.0.0.1 # line 38: max connections -c 1024 systemctl restart memcached |